home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
comm
/
bbs
/
HackNSlash22.lha
/
Contrib
/
rpg.trans
< prev
next >
Wrap
Text File
|
1993-05-28
|
1KB
|
39 lines
/* Hack & Slash 2.1 Loader
by: Rod Schnell */
options failat 21 /* Keeps users out of your shell! */
options results
call pragma('stack',10000)
UserInfo 'a' ; Name = upper(result)
SystemInfo 'm' ; Time = result
SystemInfo '8' ; Line = result
id=time(s)
Transmit
Transmit "Loading Hack & Slash..."
SetNodeLocation Name' is playing Hack & Slash'
path='t:rpg-startup'line /* change this to reflect your directory path */
multi=0 /* change to 1 if you wish to allow multiple
charachters */
if multi=1 then do
transmit 'What charachter number would you like to use?'
query 'Just press RETURN for your primary charachter. ' ; who=upper(result)
if who~='RESULT' then Name=Name'.'who
end
open('temp',path,'W')
writeln('temp','stack 10000')
writeln('temp','BBS:Extras/rpg/HSClient -t'Time' 'Name)
writeln('temp','endcli')
close('temp')
address command 'NewShell from 'path' FIFO:hack'id'/rwkecs'
address command 'BBS:Bin/TrShell -n'line' -fhack'id
address command 'Delete 'path' quiet'
delay 100
exit
/* end of Hack & Slash */